home *** CD-ROM | disk | FTP | other *** search
Text File | 2000-10-06 | 1.0 KB | 41 lines | [TEXT/R*ch] |
- #-----------------------------------------------------------------------
- # Makefile for MPW (Macintosh Programmers Workshop by Apple)
- #
- # File: MPWExtras.make
- # Project: MPWExtras
- #
- # Written by Anders F Björklund <afb@algonet.se>
- #-----------------------------------------------------------------------
-
- Objects = QDGlobals.o QDGlobals.x ApplicationSize.r
-
- MPWExtras ƒ All
- All ƒ Debug Final
- Debug ƒ {Objects}
- Final ƒ {Objects}
-
- #-----------------------------------------------------------------------
-
- QDGlobals.o ƒ QDGlobals.c
- Echo "# Compiling {Deps} using {C}"
- {C} {Deps} -o {Targ}
-
- QDGlobals.x ƒ QDGlobals.c
- Echo "# Compiling {Deps} using {PPCC}"
- {PPCC} {Deps} -o {Targ}
-
- ApplicationSize.r ƒ ApplicationSize.rsrc
- Echo "# Preparing {Targ} file for Rez"
- # Echo "Include ∂"{Deps}∂";" >{Targ}
- Echo "#include ∂"Types.r∂"" >{Targ}
- DeRez -i {RIncludes} {Deps} Types.r >>{Targ}
-
- Clean ƒ
- Echo "# Removing objects"
- Delete -i {Objects}
- Delete -y Objects DebugObjects
-
- Clean-All ƒ Clean
- Echo "# Removing binaries"
-
-